home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-01-09 | 627 b | 27 lines | [TEXT/Mrls] |
- module: dylan-user
- author: Patrick C. Beard <beard@cs.ucdavis.edu>
- description: Definition of the Windows module.
-
- define module Windows
- use dylan, export: all;
- export
- // classes.
- <window>, <text-style>, <window-or-false>,
-
- // public methods.
- window-dispose, window-erase, window-draw-line,
- window-move-to, window-draw-string,
- front-window, next-window,
-
- // text style constants.
- $bold, $italic, $outline,
- $shadow, $condense, $extend,
-
- // slot setters.
- title-setter, bounds-setter, visible-setter,
- pen-size-setter, text-style-setter,
-
- // private methods.
- dispatch-window-update;
- end module Windows;
-